home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / mcu11 / mcx11v15.arc / README.DOC < prev    next >
Text File  |  1989-04-20  |  2KB  |  37 lines

  1.                               MCX11 NOTES 
  2.  
  3. The two S-record object files on this diskette, SYSTEM.S19 and TEST.S19,
  4. were created using the AS11 assembler. SYSTEM.S19 is the object file for
  5. the MCX11 kernel, system tables, and clock driver consistent with the needs
  6. of TEST.AS.
  7.  
  8. The TEST.AS file contains four tasks (tasks 2-5, task 1 is the clock driver)
  9. which are designed to execute all of the functions in MCX11. They do not 
  10. necessarily test all possibilities for each function. It will operate on an
  11. EVM board having as little as 256 bytes of RAM. TEST.AS does not do anything
  12. important so don't expect earthshaking results or outputs.
  13.  
  14. The command lines used for assembling the files are as follows:
  15.  
  16. For MCX11 kernel - Object is SYSTEM.S19
  17.  
  18.      AS11 SYSTEM.AS MCX.AS CLKDRIVR.AS VECTORS.AS -L CRE C > MCX.LST
  19.  
  20. For TEST program - Object is TEST.S19
  21.  
  22.      AS11 TEST.AS -L CRE C > TEST.LST
  23.  
  24. MCX.LST and TEST.LST are the listing files for the two assemblies. Both
  25. listings include the cycle count and produce a cross reference listing. If
  26. either is not desired, the command lines can be changed accordingly.
  27.  
  28. It would be possible to join all elements into a single assembly and produce
  29. only one object and listing file. 
  30.  
  31. As a time saver (and paper saver), listing suppression directives could be
  32. inserted into the source code. A most likely candidate would be the code in
  33. the MCX.AS file. Since it is the main part of the kernel, it is unlikely to be
  34. changing as often as the application (TEST.AS) program.
  35.  
  36. A batch file, ASSEMBLE.BAT, is also included for a quick construction of the
  37. test environment.